home *** CD-ROM | disk | FTP | other *** search
/ HyperLib 1997 Winter - Disc 1 / HYPERLIB-1997-Winter-CD1.ISO.7z / HYPERLIB-1997-Winter-CD1.ISO / 第1特集Plug-in / Photoshop / CGFilters.sit / CG Filters / READ ME < prev    next >
Text File  |  1995-09-27  |  2KB  |  86 lines

  1. Chinto Graphics Filters
  2.  
  3.  
  4.  
  5. The Filter Factory is a plugin for Photoshop 3.0 that allows you to create filters
  6. and compile them as a separate file. While on the Web I ran across some Windows(yuck!)
  7. version of these filters. I made the included  filters in Filter Factory after deciphering the text.  My names on the slider controls are not very useful but I provide the source (and a description of what their supposed to do) for you to create your own version with your own naming convention.  These filters are freeware and I hope you find some use for them. 
  8.  
  9.  
  10. Channel Gradient:
  11.  
  12.  
  13.  
  14. This filter creates a gradient of colors in several directions, depending 
  15.  
  16. on how you set the controls.
  17.  
  18.  
  19.  
  20. The Source
  21.  
  22. R: r-(((ctl(0)-127)*X/128)*x/X)+(((ctl(1)-127)*X/128)*y/Y)
  23.  
  24. G: r-(((ctl(2)-127)*X/128)*x/X)+(((ctl(3)-127)*X/128)*y/Y)
  25.  
  26. B: r-(((ctl(4)-127)*X/128)*x/X)+(((ctl(5)-127)*X/128)*y/Y)
  27.  
  28.  
  29.  
  30. Channel Offset
  31.  
  32.  
  33.  
  34. This filter offsets each of the channels in both Horizontal and Vertical
  35.  
  36. directions.
  37.  
  38.  
  39.  
  40. The Source
  41.  
  42. R: src(x+((ctl(0)-127)*X/128),y+((ctl(3)-127)*Y/128),0)
  43.  
  44. G: src(x+((ctl(1)-127)*X/128),y+((ctl(4)-127)*Y/128),0)
  45.  
  46. B: src(x+((ctl(2)-127)*X/128),y+((ctl(5)-127)*Y/128),0)
  47.  
  48.  
  49.  
  50. Channel Spin:
  51.  
  52.  
  53.  
  54. This filter rotates each of the channels in clockwise and counterclockwise
  55.  
  56. directions. It also allows you to apply a spherical distortion.(yeah right!)
  57.  
  58.  
  59.  
  60. The Source:
  61.  
  62. R: rad(d+(4*(ctl(0)-127)*X/128),m+((ctl(3)-127)*Y/256),0)
  63.  
  64. G: rad(d+(4*(ctl(1)-127)*X/128),m+((ctl(4)-127)*Y/256),0)
  65.  
  66. B: rad(d+(4*(ctl(2)-127)*X/128),m+((ctl(5)-127)*Y/256),0)
  67.  
  68.  
  69.  
  70. Mirror:
  71.  
  72.  
  73.  
  74. This filter reflects the image in Horizontal and Vertical directions.
  75.  
  76.  
  77.  
  78. The Source:
  79.  
  80. R: src(abs(x-ctl(0)*X/256),abs(y-ctl(2)*Y/256),0)
  81.  
  82. G: src(abs(x-ctl(0)*X/256),abs(y-ctl(2)*Y/256),1)
  83.  
  84. B: src(abs(x-ctl(0)*X/256),abs(y-ctl(2)*Y/256),2)
  85.  
  86.